每個人寫網頁都一定會有一些重複的老梗,就算是2023年了,也躲不掉的那種。
放心,我說的不是nav-bar這種東西,
而是稍微又更有趣一點的小工具,也就是每個人回家都幾乎要經歷的一個小空間:「電梯」
沒錯!就是擁有電梯效果的置頂按鈕!
點下去就能夠跳到網頁的最上面,就像是我們回家的電梯,對吧?
其實只是做出一個fixed的按鈕,然後使用JS設定,藉由scrollTop的API就可以達成了!
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: red; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 18px; /* Increase font size */
}
#myBtn:hover {
background-color: #555; /* Add a dark-grey background on hover */
}
// Get the button:
let mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
}
今天玩的是很基礎的東西,雖然老梗,但是經典。
經典就是無法避免,因此就算拿來練習也不為過,所謂的進階也只是基礎的招數重覆與變化。
就像愛因斯坦說:專家是訓練有素的狗。
也像是李小龍說的:不怕練一萬招,只怕一招練一萬次。
我們不需要把太簡單的東西視為無聊,可以用另一種心態去面對,
就彷彿蜘蛛人穿越新宇宙,另一個世界的自己,也許是另一種新的境界與心境。
學會去面對、接受,就是成長的開始!(๑•ั็ω•็ั๑)